home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DEMOS / TSZSRC.ZIP / SOUND1.ASM < prev   
Encoding:
Assembly Source File  |  1994-12-01  |  15.5 KB  |  320 lines

  1.  
  2. ;
  3. ; The Sound Zone bbs Addie (re)coded by Ash..
  4. ; It was originally coded by Synopsis..but i was bored and wanted to code
  5. ; it again!.. hehe.. stupid euheu??!... if ye wanna use it its NOT lame..
  6. ; but i just think its fair to credit me and Synopsis.. dont ye think?..
  7. ; may phun rule 4ever!..l8rz
  8. ;
  9.  
  10.  
  11. code segment
  12. assume cs:code
  13. p286
  14. org 100h
  15. jumps
  16.  
  17. start:
  18.         push    0b800h            ; Destination iz da Code
  19.         pop    ds            ; Source iz da Screen..
  20.         push    cs            ; 0b800h iz da segment for
  21.         pop    es            ; da screen in 25x80x16 mode
  22.  
  23.         lea    di,screen
  24.         xor    si,si
  25.         mov    cx,2000
  26.         repz    movsw
  27.  
  28.         push    0b800h            ; dest iz now da screen
  29.         pop    es            ; source iz now Code
  30.         push    cs
  31.         pop    ds
  32.  
  33.         mov    bx,158            ; BX iz da position in
  34.         mov    ax,2            ; SI.. AX iz da ammount of 
  35.                 mov     cx,43            ; wordz to offset horiz
  36.                         ; CX iz da ammount of wordz
  37.                         ; to 'scroll'...
  38. horiz:          push    cx
  39.                 mov     si,bx
  40.         add    si,offset absurd    ; ADD offset logo
  41.         mov    di,0            ; starting pos. 0 left/up scr.
  42.         mov    cx,25            ; 25 timez
  43. do25:        push    cx
  44.         mov    cx,ax
  45.         repz    movsb
  46.         add    di,160            ; add 160 - AX
  47.         sub    di,ax
  48.         add    si,160            ; same with SI
  49.         sub    si,ax
  50.         pop    cx
  51.         loop    do25            ; vertical 25 timez
  52.  
  53.         lea    si,screen        ; offset the screenbuffer
  54.         mov    di,ax            ; after the logo offset
  55.         mov    cx,25            ; how?..just start to offset
  56. another25:    push    cx            ; the buffer after AX..
  57.         mov    cx,bx
  58.         repz    movsb
  59.         add    di,160
  60.         sub    di,bx
  61.         add    si,160
  62.         sub    si,bx
  63.         pop    cx
  64.         loop    another25
  65.  
  66.                 cmp     counter,0        ; if counter iz zero then
  67.                 jne     goleft            ; shift right.. if zero iz
  68.                         ; something else go left
  69.         sub    bx,2
  70.         add    ax,2
  71.                 jmp     further
  72.  
  73. goleft:         add     bx,2
  74.                 sub     ax,2
  75.  
  76. further:        push    ax            ; push & pop ax cos' we use AX
  77.         call    vwait            ; why push?.. we use it in
  78.         pop    ax cx            ; da vertical retrace..
  79.                 loop    horiz
  80.  
  81.         cmp    counter,0        ; thiz iz da second time 'it'
  82.         jne    outnow            ; comez here, the second time
  83.                         ; the COUNTER isn't 0 and he
  84.         push    ax            ; will get back to dos..
  85.         xor    ax,ax            ; wait for fucking key!
  86.         int    16h            ; int16h
  87.         pop    ax
  88.  
  89.         add    bx,2
  90.         sub    ax,2
  91.  
  92.         mov    cx,44            ; shift 1 word more left..why?
  93.                 inc     counter            ; find out yur selve..
  94.                 jmp     horiz
  95.  
  96. outnow:        int    20h            ; outahere!
  97.  
  98.  
  99. ;
  100. ; Data & other lame shit
  101. ;
  102.  
  103. vwait:        mov    dx,3dah            ; Thiz iz da vertical Retr.
  104. v1:        in    al,dx
  105.         test    al,8
  106.         jne    v1
  107. v2:        in    al,dx
  108.         test    al,8
  109.         je    v2
  110.         ret
  111.  
  112. counter        dw 0
  113. screen        dw 2000 dup(0)
  114.  
  115. absurd label
  116.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  117.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  118.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  119.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
  120.  DB 32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
  121.  DB 32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
  122.  DB 32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
  123.  DB 32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
  124.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  125.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  126.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  127.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,95
  128.  DB 32,95,32,95,32,95,32,95,32,95,84,90,32,90,72,90,32,90,69,90
  129.  DB 32,90,32,90,32,26,83,90,32,90,79,90,32,26,85,26,32,26,78,26
  130.  DB 32,26,68,26,32,90,32,90,32,90,90,26,32,90,79,90,32,90,78,90
  131.  DB 32,90,69,90,32,90,32,90,32,90,32,90,32,90,32,90,32,26,32,26
  132.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  133.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  134.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  135.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,26,32,26,32,26
  136.  DB 32,26,32,26,32,26,32,26,32,90,45,88,45,87,45,27,45,31,45,31
  137.  DB 45,31,45,31,45,31,45,95,45,95,45,95,45,31,45,31,45,31,45,31
  138.  DB 45,31,45,31,45,95,45,95,45,95,45,31,45,95,45,95,45,95,45,31
  139.  DB 45,27,45,23,45,24,32,24,32,24,32,24,32,24,32,24,32,24,32,24
  140.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  141.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  142.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  143.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,30,32,30,32,30
  144.  DB 32,30,32,30,32,30,32,30,32,94,32,94,32,94,32,30,32,30,32,30
  145.  DB 32,30,32,30,32,30,32,94,32,94,32,94,32,94,32,94,32,94,32,94
  146.  DB 32,94,32,94,32,94,32,94,32,94,32,30,32,94,32,94,32,94,32,94
  147.  DB 32,94,32,30,32,30,32,30,32,30,32,30,32,30,32,30,32,30,32,30
  148.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  149.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  150.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  151.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,28,32,28,32,28
  152.  DB 32,28,32,28,32,28,32,28,84,95,104,95,105,95,115,31,32,31,105,31
  153.  DB 115,31,32,31,97,31,32,95,66,95,66,95,83,31,32,31,115,31,112,31
  154.  DB 101,31,99,31,105,95,97,95,108,95,105,31,122,95,101,95,100,95,32,31
  155.  DB 105,31,110,31,58,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
  156.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  157.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  158.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  159.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
  160.  DB 83,27,66,27,47,27,83,27,66,91,80,91,82,91,79,27,47,27,83,27
  161.  DB 66,27,49,27,54,27,47,91,80,91,65,91,83,27,49,27,54,27,32,27
  162.  DB 97,31,110,31,100,95,32,95,71,91,85,27,83,91,32,91,115,95,111,95
  163.  DB 117,95,110,95,100,95,99,95,97,95,114,95,100,95,115,95,32,31,32,31
  164.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  165.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  166.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  167.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
  168.  DB 32,31,32,31,32,31,71,31,101,31,116,31,32,31,116,31,104,31,101,31
  169.  DB 32,31,108,31,97,31,116,31,101,31,115,31,116,31,32,31,85,31,116,31
  170.  DB 105,31,108,31,115,31,47,31,67,31,111,31,109,31,112,31,111,31,115,31
  171.  DB 101,31,114,31,115,31,47,31,32,31,32,31,32,31,32,31,32,31,32,31
  172.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  173.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  174.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  175.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,95
  176.  DB 32,95,32,95,112,95,108,95,97,95,121,95,101,31,114,95,115,95,47,95
  177.  DB 77,95,84,95,77,95,47,95,77,31,79,95,68,95,47,95,83,31,51,95
  178.  DB 77,95,47,95,54,31,54,95,57,95,47,95,85,95,76,95,84,95,47,95
  179.  DB 69,31,116,95,99,95,32,95,46,95,32,95,32,95,32,31,32,31,32,31
  180.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  181.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  182.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  183.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
  184.  DB 32,91,32,91,32,27,32,27,32,27,32,27,32,27,32,91,32,91,32,91
  185.  DB 32,27,32,91,32,91,32,91,32,27,32,91,32,91,32,91,32,27,32,91
  186.  DB 32,91,32,91,32,27,32,91,32,91,32,91,32,27,32,91,32,91,32,91
  187.  DB 32,27,32,91,32,91,32,91,32,27,32,91,32,91,32,91,32,27,32,27
  188.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  189.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  190.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  191.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
  192.  DB 32,91,83,95,111,31,32,31,97,31,108,31,108,31,32,95,121,95,111,95
  193.  DB 117,31,32,95,67,95,111,95,79,31,108,95,32,95,68,95,117,31,68,95
  194.  DB 101,95,83,95,32,31,44,95,32,95,99,95,97,31,108,95,108,95,32,95
  195.  DB 117,31,115,95,32,95,102,95,111,31,114,95,32,95,32,95,32,31,32,31
  196.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  197.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  198.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  199.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,95
  200.  DB 32,95,32,95,116,31,104,31,101,31,32,31,108,28,97,92,116,92,101,92
  201.  DB 115,28,116,92,32,92,47,95,32,31,104,92,111,92,116,92,116,28,101,92
  202.  DB 115,92,116,92,32,28,115,95,111,95,117,95,110,31,100,95,32,95,119,95
  203.  DB 97,31,114,95,101,95,122,95,33,31,32,95,32,95,32,95,32,31,32,31
  204.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  205.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  206.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  207.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,95
  208.  DB 32,95,32,95,32,95,32,95,32,95,32,95,32,31,32,95,32,95,32,95
  209.  DB 32,31,32,95,32,95,32,95,32,31,32,95,32,95,32,95,32,31,32,95
  210.  DB 32,95,32,95,32,31,32,95,32,95,32,95,32,31,32,95,32,95,32,95
  211.  DB 32,31,32,95,32,95,32,95,32,31,32,95,32,95,32,95,32,31,32,31
  212.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  213.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  214.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  215.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
  216.  DB 32,31,73,31,102,31,32,95,121,95,111,95,117,31,39,95,114,95,101,95
  217.  DB 32,31,97,95,32,95,108,95,97,31,109,95,101,95,114,95,32,31,119,95
  218.  DB 104,95,111,95,32,31,100,95,111,95,101,95,115,31,110,95,39,95,116,95
  219.  DB 32,31,107,95,110,95,111,95,119,31,32,95,32,95,32,95,32,31,32,31
  220.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  221.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  222.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  223.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
  224.  DB 32,91,104,95,111,95,119,95,32,95,116,95,111,31,32,95,112,95,108,95
  225.  DB 97,95,121,95,32,95,97,95,32,31,77,95,79,95,68,95,32,95,102,95
  226.  DB 105,95,108,95,101,31,32,95,111,95,114,95,32,31,105,95,102,95,32,95
  227.  DB 121,31,111,95,117,95,39,95,118,95,101,95,32,95,32,95,32,31,32,31
  228.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  229.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  230.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  231.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
  232.  DB 32,91,32,91,110,95,101,95,118,95,101,95,114,31,32,95,104,95,101,95
  233.  DB 97,95,114,95,100,95,32,95,111,31,102,95,32,95,116,95,104,95,101,95
  234.  DB 32,95,119,95,111,31,114,95,100,95,32,95,39,31,77,95,79,95,68,95
  235.  DB 39,31,32,95,116,95,104,95,101,95,110,95,32,95,32,95,32,31,32,31
  236.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  237.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  238.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  239.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,27
  240.  DB 32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27
  241.  DB 32,27,32,27,32,27,67,28,65,28,76,28,76,28,32,28,85,28,83,28
  242.  DB 32,28,78,28,79,28,87,28,33,28,33,28,32,28,32,28,32,28,32,28
  243.  DB 32,28,32,28,32,28,32,28,32,28,32,28,32,28,32,28,32,28,32,28
  244.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  245.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  246.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  247.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,91
  248.  DB 32,91,32,91,32,91,32,91,32,91,32,91,32,91,32,91,32,27,32,91
  249.  DB 32,91,87,95,101,95,32,95,99,95,97,95,110,95,32,95,104,31,101,95
  250.  DB 108,95,112,95,32,95,121,95,111,95,117,95,46,95,32,95,32,31,32,95
  251.  DB 32,95,32,95,32,95,32,95,32,95,32,95,32,95,32,95,32,31,32,31
  252.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  253.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  254.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  255.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,32,27
  256.  DB 32,27,32,27,32,27,32,27,32,27,32,91,32,91,32,91,32,27,32,91
  257.  DB 32,91,32,91,32,27,32,27,32,27,32,91,32,91,32,91,32,27,32,91
  258.  DB 32,91,32,91,32,27,32,27,32,27,32,91,32,91,32,91,32,27,32,91
  259.  DB 32,91,32,91,32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27
  260.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  261.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  262.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  263.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,84,30
  264.  DB 104,30,101,30,32,30,78,30,117,30,109,94,98,94,101,94,114,30,32,94
  265.  DB 58,94,32,94,48,30,51,30,53,30,45,94,50,94,56,94,50,30,50,94
  266.  DB 56,94,54,94,32,30,47,30,32,30,43,94,51,94,49,94,45,30,51,94
  267.  DB 53,94,45,94,50,30,56,30,50,30,50,30,56,30,54,30,32,30,32,30
  268.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  269.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  270.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  271.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,32,31
  272.  DB 32,31,32,31,32,31,32,31,32,31,32,95,32,95,32,95,32,31,32,95
  273.  DB 32,95,32,95,32,31,32,31,32,31,32,95,32,95,32,95,32,31,32,95
  274.  DB 32,95,32,95,32,31,32,31,32,31,32,95,32,95,32,95,32,31,32,95
  275.  DB 32,95,32,95,32,31,32,31,32,31,32,31,32,31,32,31,32,31,32,31
  276.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  277.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  278.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  279.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,31,32,31,50,91
  280.  DB 52,91,104,91,32,91,65,91,32,91,100,91,97,91,121,91,32,27,97,91
  281.  DB 116,91,32,91,49,27,52,27,75,27,52,91,32,91,76,91,111,27,99,91
  282.  DB 97,91,116,91,101,27,100,27,32,27,105,91,110,91,32,91,72,27,111,91
  283.  DB 108,91,108,91,97,91,110,91,100,91,33,91,33,27,33,27,32,27,32,27
  284.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  285.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  286.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  287.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,68,91
  288.  DB 105,91,115,91,116,27,114,27,105,27,98,27,117,27,116,27,105,27,111,91
  289.  DB 110,91,32,91,115,27,105,27,116,27,101,91,32,91,111,91,102,27,32,91
  290.  DB 73,91,78,91,69,27,82,27,84,27,73,91,65,91,32,91,46,27,32,91
  291.  DB 32,91,32,91,32,27,32,27,32,27,32,27,32,27,32,27,32,27,32,27
  292.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  293.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  294.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  295.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,27,32,27,67,87
  296.  DB 68,87,78,87,32,87,45,87,32,87,57,87,52,87,58,87,52,23,49,87
  297.  DB 48,87,47,87,49,87,49,87,55,87,32,87,32,87,32,87,32,23,32,87
  298.  DB 32,87,32,87,32,23,68,23,71,23,105,87,32,87,45,87,32,23,54,87
  299.  DB 56,87,58,87,51,87,49,87,48,87,47,87,49,87,50,87,32,23,32,23
  300.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  301.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  302.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  303.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,23,32,23,32,87
  304.  DB 32,87,32,87,32,87,32,87,32,87,32,87,32,87,32,87,72,23,111,87
  305.  DB 115,87,116,87,32,87,68,87,83,87,67,87,32,87,45,87,32,23,49,87
  306.  DB 51,87,53,87,58,23,49,23,48,23,49,87,48,87,47,87,48,23,32,87
  307.  DB 32,87,32,87,32,87,32,87,32,87,32,87,32,87,32,87,32,23,32,23
  308.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  309.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  310.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,15
  311.  DB 32,15,32,15,32,15,32,15,32,15,32,15,32,15,32,23,32,23,32,23
  312.  DB 32,23,40,21,80,21,115,21,46,21,32,21,116,21,104,21,101,21,114,21
  313.  DB 101,21,32,21,105,21,115,21,32,21,97,21,32,21,115,21,101,21,99,21
  314.  DB 114,21,101,21,116,21,32,21,107,21,101,21,121,21,32,21,105,21,110,21
  315.  DB 32,21,104,21,101,21,114,21,101,21,33,21,41,21,32,21,32,21,32,21
  316.  
  317. code ends
  318. end start
  319.  
  320.